home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HamCall (April 1991)
/
HAMCALL CD-ROM (Buckmaster)(April 1991).BIN
/
util
/
ezfile
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1990-10-14
|
2KB
|
49 lines
echo off
cls
if a%1==a goto error
echo
echo
echo
echo
echo
echo
echo
echo ╔═══════════════════════════════╗
echo ║ ║
echo ║ Installing EASYFILE... ║
echo ║ ║
echo ║ Please Wait ║
echo ║ ║
echo ║ Copying files ║
echo ║ ║
echo ╚═══════════════════════════════╝
copy a:*.* %1
echo
echo Files copied to directory %1
echo This directory should be placed in the DOS PATH.
echo
echo Remember, the included program EZINST.EXE may be used to configure the
echo operation of EASYFILE.
goto end
:error
echo
echo
echo
echo
echo
echo ╔══════════════════════════════════╗
echo ║ ║
echo ║ Please specify a subdirectory, ║
echo ║ ║
echo ║ on the INSTALL command line, ║
echo ║ ║
echo ║ in which to place the program ║
echo ║ ║
echo ║ files. ║
echo ║ ║
echo ║ ║
echo ║ Example: INSTALL C:\EZFILES ║
echo ║ ║
echo ╚══════════════════════════════════╝
:end